home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000331_fdc@columbia.edu_Thu May 4 09:55:20 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: alt x oddity
  5. Date: 4 May 2006 13:54:54 GMT
  6. Organization: Columbia University
  7. Lines: 52
  8. Message-ID: <slrne5k1te.ik6.fdc@sesame.cc.columbia.edu>
  9. References: <z8h6g.3018$A26.79468@ursa-nb00s0.nbnet.nb.ca>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1146750894 13288 128.59.59.56 (4 May 2006 13:54:54 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 4 May 2006 13:54:54 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15588
  17.  
  18. On 2006-05-04, Scott Caissie <scottac@nb.sympatico.ca> wrote:
  19. : Alt X (\Kexit) has a slight oddity in it that I hope someone can explain 
  20. : to me.
  21. :
  22. : When I use Alt X while in CONNECT mode to reach COMMAND mode I get this 
  23. : situation:
  24. :
  25. : Pressing Alt X (or C) to return back to CONNECT mode. When activating a 
  26. : definition macro afterwards, it won't process. It just jumps to the COMMAND 
  27. : window's prompt. You can then re-try the macro and it'll work.
  28. :
  29. : There must be a very small detail I'm missing.
  30. : All my macros, which are activated in CONNECT mode are formatted as:
  31. :
  32. : set key \## \kTest
  33. : Define test {
  34. : ....
  35. : Connect
  36. : Return
  37. : }
  38. :
  39. : Now when I use this macro while in CONNECT mode, it rapidly jumps to COMMAND 
  40. : mode, where it does its thing, then immidately goes back into CONNECT mode. 
  41. : I do this repeatedly and everything is perfect.
  42. :
  43. : Never am I stuck at the prompt using my macros.
  44. : Why then does using the commands, Alt X or C, manually not have the same 
  45. : effect? Why does it negate the next definition type macro used? 
  46. :
  47. See the recent thread on this same topic.  This is one of the most annoying
  48. bugs in Kermit 95 2.1.3: macros assigned to keystrokes simply do not work as
  49. expected.  Quoting from ftp://kermit.columbia.edu/kermit/k95/newbugs.txt :
  50.  
  51.   735. Macros on Keys broken
  52.  
  53.   In versions 1.1.21 through 2.1.3, when a SET [TERMINAL] KEY definition
  54.   includes a macro invocation, then pressing the key while in the
  55.   Terminal screen returns to the command screen (and in some cases might
  56.   also fail to execute the macro).  A workaround would be to:
  57.  
  58.     define myconnect connect /synchronous
  59.     (make the connection with SET PORT, DIAL, or SET HOST)
  60.     if success do myconnect
  61.  
  62.   This is fixed in the next release.
  63.  
  64. And then to address the inevitable next question, "How do I get the fix?" or
  65. "When will the next release come out?", see:
  66.  
  67.   http://www.columbia.edu/kermit/support.html
  68.  
  69. - Frank